home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 5: The Fifth Dimension / 17 Bit - The Fifth Dimension (1995)(17 Bit Software)[!].iso / files / 3859.dms / 3859.adf / EasyRexx / SetWidth.erex < prev   
Text File  |  1995-07-02  |  198b  |  14 lines

  1. /* EasyCalc 2.0 Arexx Script */
  2.  
  3. options results
  4.  
  5. 'getnumber "Enter the new width for all columns:" "10" "600"'
  6.  
  7. newwidth = result
  8.  
  9. easytofront
  10.  
  11. do column=0 for 256
  12.   'colwidth' column newwidth
  13. end
  14.